home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / SAVESCRN.HDR < prev    next >
Text File  |  1994-04-25  |  941b  |  40 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _SaveScreen( cFileName ) --> lSuccess
  8.  
  9. PARAMETERS:
  10.  
  11. cFileName: save file name
  12.  
  13. SHORT:
  14.  
  15. Save screen to a text file.
  16.  
  17. DESCRIPTION:
  18.  
  19. _SaveScreen() saves the contents of the screen to a text file specified
  20. in cFileName.
  21.  
  22. If the file specified in cFileName does not exist, it is created. If it
  23. does exist, the contents of the screen are appended to it.
  24.  
  25. Returns TRUE if successfully saved, else FALSE.
  26.  
  27. NOTE:
  28.  
  29.  
  30.  
  31. EXAMPLE:
  32.  
  33. _SaveScreen('THIS_SCR.TXT')
  34.  
  35. Results: The current contents of the screen are saved to a file
  36. called THIS_SCR.TXT.  If THIS_SCR.TXT does not exist, it is created, else
  37. it is appended to.
  38.  
  39. ******************************************************************************/
  40.